home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Keyboard / Keyboard Messages / KeyMessage.cp < prev    next >
Encoding:
Text File  |  1997-06-28  |  242 b   |  20 lines  |  [TEXT/CWIE]

  1. // KeyMessage.cp
  2.  
  3. #ifndef KeyMessage_h
  4. #include "KeyMessage.h"
  5. #endif
  6. #ifndef Assert_h
  7. #include "Assert.h"
  8. #endif
  9.  
  10. bool KeyMessage::CanAppend() const
  11.   {
  12.     return false;
  13.   }
  14.  
  15. bool KeyMessage::Append( Key )
  16.   {
  17.     Assert( 0 );
  18.     return false;
  19.   }
  20.